* babl/babl-image.c: (babl_image_from_linear): do additional casts to
silence warnings from compiler.
svn path=/trunk/; revision=255
+2007-11-25 Øyvind Kolås <pippin@gimp.org>
+
+ * babl/babl-image.c: (babl_image_from_linear): do additional casts to
+ silence warnings from compiler.
+
2007-11-25 Øyvind Kolås <pippin@gimp.org>
* docs/index-static.html.in: changed documentation to use babl_format
}
babl = image_new (
- (BablFormat *) format!=model?format:NULL,
+ ((void*)format!=(void*)model)?(BablFormat*)format:NULL,
model, components,
component, sampling, type, data, pitch, stride);
return babl;